home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / mx / core / ContainerCreationPolicy.as < prev    next >
Encoding:
Text File  |  2010-05-14  |  504 b   |  24 lines

  1. package mx.core
  2. {
  3.    use namespace mx_internal;
  4.    
  5.    public final class ContainerCreationPolicy
  6.    {
  7.       mx_internal static const VERSION:String = "2.0.1.0";
  8.       
  9.       public static const AUTO:String = "auto";
  10.       
  11.       public static const ALL:String = "all";
  12.       
  13.       public static const QUEUED:String = "queued";
  14.       
  15.       public static const NONE:String = "none";
  16.       
  17.       public function ContainerCreationPolicy()
  18.       {
  19.          super();
  20.       }
  21.    }
  22. }
  23.  
  24.